// // Copyright (c) 2009 All Right Reserved // // vl // // 2009-01-01 // Contains ... using JetBrains.Annotations; namespace LargoCommon.Music { /// /// Editor Content. /// public enum EditorContent { /// No content. [UsedImplicitly] None = 0, /// Number of tones. Cell = 1, /// Rhythmic motives. RhythmicStructure = 2, /// Rhythmic motives. MelodicStructure = 3, /// Number of tones. Loudness = 4, /// Rhythmic motives. RhythmicMotive = 5, /// Melodic motives. MelodicMotive = 6, /// Musical Octave. Octave = 7, /// Musical Band. Band = 8, /// Content for Instrument. Instrument = 9, /// Tone energy. BeatLevel = 10, /// Number of tones. ToneLevel = 11, /// Melodic shape. MelodicShape = 12, /// Melodic shape. MelodicFunction = 13 } }